home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 7: Sunsite / Linux Cubed Series 7 - Sunsite Vol 1.iso / libs / libreadl.0 / libreadl / README.Linux
Encoding:
Text File  |  1995-11-29  |  1.4 KB  |  37 lines

  1.       GNU readline 2.0
  2. binary distribution for Linux
  3. -----------------------------
  4.  
  5. This is a Linux binary distribution of the GNU readline 2.0 package.
  6. I took the generic sources off of prep.ai.mit.edu and compiled a
  7. shared library under Linux 1.3.45 with gcc 2.7.0 in ELF.
  8.  
  9. Here's what I did to compile and install it:
  10.  
  11.     ./configure
  12.     make CFLAGS="-O2 -fPIC"
  13.     gcc -shared -Wl,-soname,libreadline.so.2 -o libreadline.so.2.0.0 *.o
  14.     install libreadline.so.2.0.0 /usr/local/lib
  15.     ldconfig -v
  16.     install -m 644 libreadline.a /usr/local/lib
  17.     mkdir /usr/local/include/readline
  18.     chmod 755 /usr/local/include/readline
  19.     install -m 644 chardefs.h history.h keymaps.h readline.h tilde.h /usr/local/include/readline
  20.     install -m 644 doc/readline.3 /usr/local/man/man3
  21.     install -m 644 doc/*.info* /usr/local/info
  22.  
  23. I tarred it from /usr/local, so you should be able to untar the
  24. package in either /usr or /usr/local, depending on where you want the
  25. library.  Then, just run "ldconfig -v" and enjoy. :)
  26.  
  27. Note that I gave the library a number of "2.0.0".  There seem to be a
  28. lot of readline binaries floating around, all with different numbers.
  29. Since this is the first public Linux/ELF release that I know of, I'm
  30. taking the opportunity to keep the numbering scheme in line with the
  31. FSF's: they called it readline 2.0, so I called the library 2.0.0.
  32.  
  33. Enjoy!
  34.  
  35. Mark D. Roth (roth@uiuc.edu)
  36. Tue Nov 28 21:55:39 CST 1995
  37.